home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 299_01 / error.h < prev    next >
Text File  |  1989-12-28  |  647b  |  15 lines

  1. /****************************************************************************/
  2. /* error.h                                                                  */
  3. /* this header is required for error.c                                      */
  4. /*  (c) by Ronald Michaels. This program may be freely copied, modified,    */
  5. /*  transmitted, or used for any non-commercial purpose.                    */
  6. /****************************************************************************/
  7.  
  8. void error           (int,int);  /* prototype for error function */
  9. #define WARN  1
  10. #define FATAL 2
  11.  
  12. #define NO_OF_ERRORS (sizeof(err_mgs)/sizeof(char *))
  13.  
  14.  
  15.